home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / doc / acpid / README.Debian < prev   
Text File  |  2008-09-25  |  1KB  |  41 lines

  1. acpid for Debian
  2. ================
  3.  
  4. Kernel requirements:
  5. - Unpatched 2.4.x where x >= 7
  6. - Unpatched 2.5.x should work, not tested
  7. - Unpatched 2.6.x just works
  8. - Using acpi patches from http://sourceforge.net/project/acpi. The newest is your friend.
  9.  
  10. General:
  11. The acpid daemon now handles user defined events, too. Place event files
  12. under /etc/acpi/events.
  13.  
  14. If an event occurs, acpid recurses through the event files in order to
  15. see if the regex defined after "event" matches. If they do, action is
  16. executed.
  17.  
  18. Example: /etc/acpi/events/power
  19.  
  20. # This file handles the actions for the power button
  21. event=button power.*
  22. action=/sbin/init 0
  23.  
  24. # This is the new style, introduced by the acpi patch acpi-20020329.
  25. #event=button/power .*
  26. #action=/sbin/init 0
  27.  
  28. NOTE: This has changed in acpi development code! See /etc/acpi/default.sh
  29.       for more information.
  30.  
  31. Your script will get the complete event string (as reported by
  32. /proc/acpid/events), if you use %e as a parameter of your script.
  33. You may want to split this by calling set $*. $1 then holds the
  34. event group, $2 takes the event and $3 and $4 take the values as
  35. reported by the kernel.
  36.  
  37. When using acpid with modules, you can use /etc/default/acpid in order
  38. to specify modules to be loaded at startup.
  39.  
  40. Cajus Pollmeier <cajus@debian.org>, Fri, 08 Sept 2001 11:58:48 +0200
  41.